home *** CD-ROM | disk | FTP | other *** search
- module oInfoPlugin is cPlugin
- has
- Install(thePath)
- do
- self.cPlugin:Install(thePath);
- KERNEL.ConfigureKOption(oInfoKOption);
- end;
-
- release Editor:
- GetIO()
- do
- result := oIOInfoPlugin;
- end;
- end;
- end;
-
- object oInfoKOption is "Info";
-
- class cInfoConfiguration
- is
- cConfiguration;
- has
- Copyright;
- Comment;
-
- InitializeSettings()
- do
- self.cConfiguration:InitializeSettings();
- if self.Copyright = void then
- self.Copyright := "";
- end;
- if self.Comment = void then
- self.Comment := "";
- end;
- end;
-
- release Editor:
- GetIO()
- do
- result := oIOInfoConfigurationLine;
- end;
- end;
- end;
-
- release Editor:
-
- object oIOInfoLabel is "Info";
-
- object oIOInfoPlugin is cIOPlugin
- with
- AboutDialog is cUIAboutPluginDialog
- with
- HelpURL is "Info/index.htm";
- Label is oIOInfoLabel;
- Text is "Project copyright and comment.";
- end;
- ProjectLines is [
- oIOInfoConfigurationLine
- ];
- end;
-
- object oIOInfoConfigurationLine is cIOConfiguration
- with
- IOItemClass is cInfoConfiguration;
- KOption is oInfoKOption;
- Label is oIOInfoLabel;
- Lines is [
- oIOCopyrightSetting,
- oIOCommentSetting
- ];
- end;
-
- object oIOCopyrightSetting is cIOSettingLine
- with
- Name is "Copyright";
- Words is [
- cIOStringBox with Field is Copyright; Range is [1, 255]; Width is 32; end
- ];
- end;
-
- object oIOCommentSetting is cIOSettingLine
- with
- Name is "Comment";
- Words is [
- cIOStringBox with Field is Comment; Range is [1, 255]; Width is 32; end
- ];
- end;
-
- end; -- release Editor
-